Edit Student
- Home
- Students List
- Edit Student
- {{ Form::label('user_autoid', 'User Id:') }} {{ Form::text('user_autoid', $details->user_autoid, array("readonly"=>"readonly")) }}
- {{ Form::label('first_name', 'First Name: *') }} {{ Form::text('first_name',$details->first_name) }}
- {{ Form::label('last_name', 'Last Name: *') }} {{ Form::text('last_name',$details->last_name) }}
- {{ Form::label('address', 'Address: *') }} {{ Form::text('address',$details->address) }}
- {{ Form::label('phone', 'Phone: *') }} {{ Form::text('phone',$details->phone) }}
- {{ Form::label('user_email', 'User Email: *') }} {{ Form::text('user_email', $details->user_email) }}
- {{ Form::label('alternate_email', 'Alternate Email: *') }} {{ Form::text('alternate_email',$details->alternate_email) }}
- {{ Form::label('password', 'Password:') }} {{ Form::password('password') }}
- {{ Form::label('cpassword', 'Confirm password:') }} {{ Form::password('cpassword') }}
- {{ Form::label('batch', 'Batch: *') }} {{ Form::select('batch[]', $batches, $editbatches, array('multiple' => 'true', 'class' => 'form-control')) }}
- {{ Form::label('consultancy', 'Consultancy: *') }} {{ Form::select('consultancy',$clients,$details->consultancy) }}
- {{ Form::label('consultancy_contact', 'Consultancy Contact: *') }} {{ Form::text('consultancy_contact',$details->consultancy_contact) }}
- {{ Form::label('emergency_contact', 'Emergency Contact: *') }} {{ Form::text('emergency_contact',$details->emergency_contact) }}
- {{ Form::label('emergency_relationship', 'Emergency Relationship: *') }} {{ Form::text('emergency_relationship',$details->emergency_relationship) }}
- {{ Form::label('country', 'Country: *') }} {{ Form::select('country', $country, $details->country, array('class' => 'student_country')) }} @if(isset($details->country) && $details->country != 99)
- {{ Form::label('visa_type', 'Visa Type: *') }} {{ Form::text('visa_type',$details->visa_type) }} @endif @if(isset($details->country) && $details->country == 99) @endif
-
{{ Form::label('resume', 'Resume:') }}
{{ Form::file('resume') }}
{{$details->resume}} @if(!empty($details->resume)) @endif
- {{ Form::label('skype_id', 'Skype Id: *') }} {{ Form::text('skype_id',$details->skype_id) }}
- {{ Form::label('fee', 'Fee: *') }} {{ Form::text('fee', $details->fee) }}
- {{ Form::label('payment_status', 'Payment Status: *') }} {{ Form::select('payment_status',array('paid'=> 'Paid', 'notpaid'=> 'Not Paid', 'partialpaid'=> 'Partial Paid'),$details->payment_status) }}
- {{ Form::label('created_at', 'Attestation Date:') }} {{ Form::text('created_at',date('F d,Y',strtotime($student->updated_at)),array("readonly"=>"readonly")) }}
- {{ Form::label('user_status', 'User Status:') }} {{ Form::select('user_status', array('selectstatus' => 'Select Status', 'active' => 'Active', 'inactive' => 'Inactive'),$student->user_status) }}
-
{{ Form::label('support_batch', 'Support: ') }}
{{ Form::select('support_batch',$supportBatches, array('class' => 'supportSelect')) }}
{{ Form::text('support_date', null, array('class' => 'datepicker', 'placeholder' => 'Select Support Date', 'id' => 'supportDateId'))}}
{{ Form::checkbox('support_date', 'null', '')}} {{ Form::label('support_batch', 'Reset Support') }}
-
Certification Status
@if (count(json_decode($details->certificates)) > 0) @foreach (json_decode($details->certificates) as $t =>$v)Certification Name Certification Id Certification Expiration Date @endforeach @endif - {{ Form::submit('Update', array('class' => 'btn btn-info')) }} {{ link_to_route('students.index', 'Cancel', $student->id, array('class' => 'btn btn-info')) }}
-
{{ implode('', $errors->all('
- :message ')) }}