{!! Form::open(array('files' => true, 'route' => config('coreadmin.route').'.identity.store', 'id' => 'form-with-validation', 'class' => 'form-horizontal contact100-form validate-form')) !!}
{!! Form::label('featured_image', 'Featured Image*', array('class'=>'col-sm-12 control-label')) !!}
{!! Form::file('featured_image' , ['class' => '']) !!} {!! Form::hidden('featured_image_w', 4096) !!} {!! Form::hidden('featured_image_h', 4096) !!}
{!! Form::label('logo', 'Logo*', array('class'=>'col-sm-12 control-label')) !!}
{!! Form::file('logo') !!} {!! Form::hidden('logo_w', 4096) !!} {!! Form::hidden('logo_h', 4096) !!}
{!! Form::label('name', 'Name*', array('class'=>'col-sm-2 control-label')) !!}
{!! Form::text('name', old('name'), array('class'=>'form-control input100' , 'placeholder' => '')) !!}
{!! Form::label('address', 'Address*', array('class'=>'col-sm-2 control-label')) !!}
{!! Form::text('address', old('address'), array('class'=>'form-control input100' ,'placeholder' => '')) !!}
{!! Form::label('gallery', 'Gallery Images1*', array('class'=>'col-sm-12 control-label')) !!}
{!! Form::file('gallery') !!} {!! Form::hidden('gallery_w', 4096) !!} {!! Form::hidden('gallery_h', 4096) !!}
{!! Form::label('gallery', 'Gallery Images2*', array('class'=>'col-sm-12 control-label')) !!}
{!! Form::file('gallery1') !!} {!! Form::hidden('gallery_w', 4096) !!} {!! Form::hidden('gallery_h', 4096) !!}
{!! Form::label('gallery', 'Gallery Images3*', array('class'=>'col-sm-12 control-label')) !!}
{!! Form::file('gallery2') !!} {!! Form::hidden('gallery_w', 4096) !!} {!! Form::hidden('gallery_h', 4096) !!}
{!! Form::label('menu', 'Menu*', array('class'=>'col-sm-2 control-label')) !!}
{!! Form::file('menu') !!}
Required PDF File
Personal Contact Details
{!! Form::label('contact_name', 'Contact person name*', array('class'=>'col-sm-12 control-label')) !!}
{!! Form::text('contact_name', old('contact_name'), array('class'=>'form-control input100' , 'placeholder' => '')) !!}
{!! Form::label('contact_designation', 'Designation of contact person*', array('class'=>'col-sm-12 control-label')) !!}
{!! Form::text('contact_designation', old('contact_designation'), array('class'=>'form-control input100' , 'placeholder' => '')) !!}
{!! Form::label('whatsapp_no', 'Whatsapp Number*', array('class'=>'col-sm-12 control-label')) !!}
{!! Form::text('whatsapp_no', old('whatsapp_no'), array('class'=>'form-control input100' , 'placeholder' => '')) !!}
{!! Form::label('contact_no', 'Contact Number*', array('class'=>'col-sm-12 control-label')) !!}
{!! Form::text('contact_no', old('contact_no'), array('class'=>'form-control input100' , 'placeholder' => '')) !!}
{!! Form::label('gst', 'GST', array('class'=>'col-sm-12 control-label')) !!}
{!! Form::text('gst', old('gst'), array('class'=>'form-control input100' , 'placeholder' => '')) !!}
{!! Form::label('bank_name', 'Bank Name', array('class'=>'col-sm-12 control-label')) !!}
{!! Form::text('bank_name', old('bank_name'), array('class'=>'form-control input100' , 'placeholder' => '')) !!}
{!! Form::label('bank_ifsc', 'Bank IFSC', array('class'=>'col-sm-12 control-label')) !!}
{!! Form::text('bank_ifsc', old('bank_ifsc'), array('class'=>'form-control input100' , 'placeholder' => '')) !!}
{!! Form::label('bank_number', 'Bank Number', array('class'=>'col-sm-12 control-label')) !!}
{!! Form::text('bank_number', old('bank_number'), array('class'=>'form-control input100' , 'placeholder' => '' ,'data-validate'=>"Bank Number is required" )) !!}
{!! Form::label('email', 'Email*', array('class'=>'col-sm-12 control-label')) !!}
{!! Form::email('email', old('email'), array('class'=>'form-control input100' , 'placeholder' => '', 'data-validate'=>"Enter Your Email (e@a.x)")) !!}
{!! Form::label('website', 'Website', array('class'=>'col-sm-12 control-label')) !!}
{!! Form::text('website', old('website'), array('class'=>'form-control input100' , 'placeholder' => '')) !!}
{!! Form::label('description', 'Some Description*', array('class'=>'col-sm-12 control-label')) !!}
{!! Form::textarea('description', old('description'), array('class'=>'form-control ckeditor' , 'placeholder' => '')) !!}
{!! Form::submit( trans('coreadmin::templates.templates-view_create-create') , array('class' => 'btn btn-primary blu')) !!}