@extends('layouts.app') @section('content')

@lang('lang.edit') @lang('models/clients.singular')

@include('adminlte-templates::common.errors')
{!! Form::model($client, ['route' => ['admin.clients.update', $client->id],'files'=>true, 'method' => 'patch']) !!}
{!! Form::hidden('id',$client->id) !!} @include('admin.clients.fields')
{!! Form::close() !!}
@endsection