@extends('layouts.scaffold')
@section('main')
Create Faculty
@if ($errors->any())
{{ implode('', $errors->all('- :message
')) }}
@endif
{{ Form::open(array('route' => 'faculties.store',"id"=>"createFaculty2")) }}
-
{{ Form::label('firstname', 'Firstname: *') }}
{{ Form::text('firstname') }}
-
{{ Form::label('lastname', 'Lastname: *') }}
{{ Form::text('lastname') }}
-
{{ Form::label('email', 'Email: *') }}
{{ Form::text('email') }}
-
{{ Form::label('address', 'Address:') }}
{{ Form::text('address') }}
-
{{ Form::label('phone', 'Phone: *') }}
{{ Form::text('phone') }}
-
{{ Form::label('alternate_email', 'Alternate email:') }}
{{ Form::text('alternate_email') }}
-
{{ 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::submit('Submit', array('class' => 'btn btn-info')) }}
{{ Form::close() }}
@if ($scripts = 'js/faculties/create_faculties.js') @endif
@stop