{!! Form::rawLabel($input,trans('admin.Title')."*",['class' => 'col-md-2 control-label']) !!}
@php $input='email'; @endphp
{!! Form::text($input,null,['class'=>'form-control']) !!}
@foreach($errors->get($input) as $message)
{{ $message }}
@endforeach
{!! Form::rawLabel($input,"ايميل الدخول للبنك"."*",['class' => 'col-md-2 control-label']) !!}
@php $input='password'; @endphp
{!! Form::email($input,null,['class'=>'form-control']) !!}
@foreach($errors->get($input) as $message)
{{ $message }}
@endforeach
{!! Form::rawLabel($input,trans('admin.Password')."*",['class' => 'col-md-2 control-label']) !!}
@php $input='mobile'; @endphp
{!! Form::password($input,['class'=>'form-control']) !!}
@foreach($errors->get($input) as $message)
{{ $message }}
@endforeach
{!! Form::rawLabel($input,"رقم هاتف الشخص مسؤول",['class' => 'col-md-2 control-label']) !!}
@php $input='logo'; @endphp
{!! Form::text($input,null,['class'=>'form-control']) !!}
@foreach($errors->get($input) as $message)
{{ $message }}
@endforeach
{!! Form::rawLabel($input,"شعار البنك"."*",['class' => 'col-md-2 control-label']) !!} {{trans("front.jpg,png,jpeg")}}, {{trans("front.Allowed max file size 4MB")}} {{trans("admin.Recommended resolution")}} 600x480
@if(ACL::can('publish-'.$module))
@php $input='published'; @endphp
{!! Form::file($input,['class'=>'form-control fileinput','accept'=>'image/*','data-show-preview'=>'false','data-allowed-file-extensions'=>'["jpg", "png","jpeg"]']) !!}
{!!viewValue($row->$input,'image')!!}
@foreach($errors->get($input) as $message)
{{ $message }}
@endforeach
{!! Form::rawLabel($input,trans('admin.Published'),['class' => 'col-md-2 control-label']) !!}
@endif