@extends('layouts.scaffold')
@section('title')
Add Student|Golars Networks
@stop
@section('main')
@if ($errors->any())
{{ implode('', $errors->all('- :message
')) }}
@endif
{{ Form::open(array('route' => 'students.store','files' => true, 'id' => 'createStudents')) }}
-
{{ Form::label('first_name', 'First Name: *') }}
{{ Form::text('first_name') }}
-
{{ Form::label('last_name', 'Last Name: *') }}
{{ Form::text('last_name') }}
-
{{ Form::label('address', 'Address: *') }}
{{ Form::text('address') }}
-
{{ Form::label('phone', 'Phone: *') }}
{{ Form::text('phone') }}
-
{{ Form::label('user_email', 'User Email: *') }}
{{ Form::text('user_email') }}
-
{{ Form::label('alternate_email', 'Alternate Email: *') }}
{{ Form::text('alternate_email') }}
-
{{ Form::label('batch', 'Batch: *') }}
{{ Form::select('batch', $batches, null, array('class' => 'form-control')) }}
-
{{ Form::label('consultancy', 'Consultancy: *') }}
{{ Form::select('consultancy',$clients,array('id','consult')) }}
-
{{ Form::label('consultancy_contact', 'Consultancy Contact: *') }}
{{ Form::text('consultancy_contact',null,array('id' => 'consultancy_contact')) }}
-
{{ Form::label('emergency_contact', 'Emergency Contact: *') }}
{{ Form::text('emergency_contact') }}
-
{{ Form::label('emergency_relationship', 'Emergency Relationship: *') }}
{{ Form::text('emergency_relationship') }}
-
{{ Form::label('country', 'Country: *') }}
{{ Form::select('country', $country, null, array('class' => 'student_country')) }}
-
{{ Form::label('visa_type', 'Visa Type: *') }}
{{ Form::text('visa_type') }}
-
{{ Form::label('resume', 'Resume:') }}
{{ Form::file('resume') }}
-
{{ Form::label('skype_id', 'Skype Id: *') }}
{{ Form::text('skype_id') }}
-
{{ Form::label('fee', 'Fee: *') }}
{{ Form::text('fee') }}
-
{{ Form::label('payment_status', 'Payment Status: *') }}
{{ Form::select('payment_status',array('1'=> 'Paid', '2'=> 'Not Paid', '3'=> 'Partial Paid')) }}
-
{{ Form::label('user_status', 'User Status:') }}
{{ Form::select('user_status', array('selectstatus' => 'Select Status', 'active' => 'Active', 'inactive' => 'Inactive')) }}
-
Certification Status
| Certification Name |
Certification Id |
Certification Expiration Date |
|
-
{{ Form::submit('Submit', array('class' => 'btn btn-info')) }}
{{ link_to_route('students.index', 'Cancel', null, array('class' => 'btn btn-info')) }}
{{ Form::close() }}
@if ($scripts = 'js/students/create_students.js') @endif
@stop