@extends('layouts.scaffold')
@section('title')
Add Faculty|Golars Networks
@stop
@section('main')
@if ($errors->any())
{{ implode('', $errors->all('- :message
')) }}
@endif
{{ Form::open(array('route' => 'faculties.store',"id"=>"createFaculty")) }}
-
{{ Form::label('firstname', 'First Name: *') }}
{{ Form::text('firstname') }}
-
{{ Form::label('lastname', 'Last Name: *') }}
{{ Form::text('lastname') }}
-
{{ Form::label('user_email', 'User Email: *') }}
{{ Form::text('user_email') }}
-
{{ Form::label('alternate_email', 'Alternate Email: *') }}
{{ Form::text('alternate_email') }}
-
{{ Form::label('address', 'Address:') }}
{{ Form::text('address') }}
-
{{ Form::label('phone', 'Phone: *') }}
{{ Form::text('phone') }}
-
{{ Form::label('skype_id', 'Skype Id:') }}
{{ Form::text('skype_id') }}
-
{{ Form::label('emergency_contactnumber', 'Emergency Contact: *') }}
{{ Form::text('emergency_contactnumber') }}
-
{{ Form::label('relationship', 'Emergency Relationship: *') }}
{{ Form::text('relationship') }}
-
{{ Form::label('technology_id', 'Technologies: *') }}
{{ Form::select('technology_id[]', $technologies, null, array('class' => 'form-control',"multiple"=>"multiple")) }}
-
{{ Form::label('user_status', 'User Status:') }}
{{ Form::select('user_status', array('selectstatus' => 'Select Status', 'active' => 'Active', 'inactive' => 'Inactive')) }}
-
{{ Form::submit('Submit', array('class' => 'btn btn-info')) }}
{{ link_to_route('faculties.index', 'Cancel', null, array('class' => 'btn btn-info')) }}
{{ Form::close() }}
@if ($scripts = 'js/faculties/create_faculties.js') @endif
@stop