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