@extends('layouts.app') @section('title') @lang('crud.edit') @lang('models/volunteers.singular') @endsection @section('content')

@lang('crud.edit') @lang('models/volunteers.singular')

@include('stisla-templates::common.errors')
{!! Form::model($volunteer, ['route' => ['admin.volunteers.update', $volunteer->id], 'method' => 'patch']) !!}
@include('volunteers.fields')
{!! Form::close() !!}
@endsection