@php $input='title'; @endphp
{!! Form::rawLabel($input,"اسم المنطقة"."*",['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
@if(ACL::can('publish-'.$module)) @php $input='published'; @endphp
{!! Form::rawLabel($input,trans('admin.Published'),['class' => 'col-md-2 control-label']) !!}
@endif