@php $input='title'; @endphp
{!! Form::rawLabel($input,trans('admin.Name')."*",['class' => 'col-md-3 control-label']) !!}
{!! Form::text($input,null,['class'=>'form-control']) !!} @foreach($errors->get($input) as $message) {{ $message }} @endforeach
@php $input='title_ar'; @endphp
{!! Form::rawLabel($input,trans('admin.Name Ar')."*",['class' => 'col-md-3 control-label']) !!}
{!! Form::text($input,null,['class'=>'form-control']) !!} @foreach($errors->get($input) as $message) {{ $message }} @endforeach
@php $input='description'; @endphp
{!! Form::rawLabel($input,trans('admin.Description')."*",['class' => 'col-md-3 control-label']) !!}
{!! Form::textarea($input,null,['class'=>'form-control', 'rows' => 4, 'cols' => 54, 'style' => 'resize:none']) !!} @foreach($errors->get($input) as $message) {{ $message }} @endforeach
@php $input='description_ar'; @endphp
{!! Form::rawLabel($input,trans('admin.Arabic')." ".trans('admin.Description')."*",['class' => 'col-md-3 control-label']) !!}
{!! Form::textarea($input,null,['class'=>'form-control', 'rows' => 4, 'cols' => 54, 'style' => 'resize:none']) !!} @foreach($errors->get($input) as $message) {{ $message }} @endforeach
@php $input='logo'; @endphp
{!! Form::rawLabel($input,trans('admin.Logo'),['class' => 'col-md-3 control-label']) !!}
{!! Form::file($input,null,['class'=>'form-control']) !!} @foreach($errors->get($input) as $message) {{ $message }} @endforeach
@if(ACL::can('publish-'.$module)) @php $input='published'; @endphp
{!! Form::rawLabel($input,trans('admin.Published'),['class' => 'col-md-2 control-label']) !!}
@endif