@if(session('msg_success'))
@endif
@if(session('msg_update'))
@endif
@if(session('msg_delete'))
@endif
{!! Form::open(['url' => 'stuffdatasave', 'class' => 'form-horizontal', 'method' => 'post','files'=>true]) !!}
{!! Form::close() !!}
{!! Form::label('name', 'Name/Id', array('class' =>'control-label col-sm-4 col-md-4 col-lg-4')) !!}
{!! Form::text('name', '', array('class' =>'form-control', 'placeholder'=>'Name')) !!}
{!! Form::label('dob', 'Date Of Birth', array('class' =>'control-label col-sm-4 col-md-4 col-lg-4')) !!}
{!! Form::label('gender', 'Gender', array('class' =>'control-label col-sm-4 col-md-4 col-lg-4')) !!}
{!! Form::select('gender', array(
'male' => 'Male',
'female' => 'Female',),null, ['class' => 'form-control']) !!}
{!! Form::label('contact', 'Contact', array('class' =>'control-label col-sm-4 col-md-4 col-lg-4')) !!}
{!! Form::tel('contact', '', array('class' =>'form-control', 'placeholder'=>'+880 1111111111')) !!}
{!! Form::label('email', 'E-mail', array('class' =>'control-label col-sm-4 col-md-4 col-lg-4')) !!}
{!! Form::email('email', '', array('class' =>'form-control', 'placeholder'=>'example@mail.com')) !!}
{!! Form::label('presadd', 'Present Address', array('class' =>'control-label col-sm-4 col-md-4 col-lg-4')) !!}
{!! Form::textarea('presadd','',array('class'=>'form-control', 'rows' => '3')) !!}
{!! Form::label('permadd', 'Permanent Address', array('class' =>'control-label col-sm-4 col-md-4 col-lg-4')) !!}
{!! Form::textarea('permadd','',array('class'=>'form-control', 'rows' => '3')) !!}
{!! Form::label('remarks', 'Remarks', array('class' =>'control-label col-sm-4 col-md-4 col-lg-4')) !!}
{!! Form::textarea('remarks','',array('class'=>'form-control', 'rows' => '3')) !!}
{!! Form::label('nid', 'National Id', array('class' =>'control-label col-sm-4 col-md-4 col-lg-4')) !!}
{!! Form::text('nid', '', array('class' =>'form-control', 'placeholder'=>'')) !!}
{!! Form::label('designation', 'Designation', array('class' =>'control-label col-sm-4 col-md-4 col-lg-4')) !!}
{!! Form::label('stuff_img', 'Photo And CV Upload', array('class' =>'control-label col-sm-4 col-md-4 col-lg-4','required'=>'required')) !!}
Upload Profile Picture (jpeg,png)
Upload CV (pdf,docx)
Close
{{ Form::submit('Save Only', array('class' => 'btn btn-success btn-sm','name'=>'saveonly')) }}
{{ Form::submit('Save And Next', array('class' => 'btn btn-primary btn-sm','name'=>'savennext')) }}