@if ($appconfig)
{!! Form::model($appconfig, ['method' => 'PATCH', 'action' => ['AppConfigController@update', $appconfig->id], 'files' => true]) !!}
{!! Form::label('title',__('App Title')) !!}
{!! Form::text('title', null, ['class' => 'form-control']) !!}
{{ $errors->first('title') }}
(Note - Size : 300x90)
{!! Form::close() !!}
@endif