@extends('cms.application') @section('content')
Edit {{ $father->fullname }}
{!! Form::model($father, ['route' => ['cms.founding-fathers.update', $father->id], 'files' => true, 'method' => 'PATCH']) !!}
@include('cms.includes.cropimage',['img' => asset('/uploads/administration/'.$father->photo_url),'aspectRatio'=>1/1])
@include('cms.founding_fathers._form', ['submitButton' => "Update"]) {!! Form::close() !!}
@stop