@extends('dashboard.layout.layout') @section('content')
{!! trans('dashboard.client.edit_client') !!}
{!! Form::model($client,['route' => ['dashboard.client.update',$client->id] , 'method' => 'PUT' , 'files' => true ]) !!} @include('dashboard.client.form',['btnSubmit' => trans('dashboard.general.save')]) {!! Form::close() !!}
@endsection