@extends('layouts.default') @section('title', 'Create College') @section('header-links') @include('includes.headers.colleges') @endsection @section('new_button') remove_red_eye College list @endsection @section('content')
{!! Form::open(['url'=>'/college', 'data-toggle'=>'validator', 'autocomplete'=>'off', 'role'=>'form', 'id'=>'create_college_form']) !!}
{!! Form::textGroup('name', 'College Name', null, ['id'=>'name', 'required'=>'required']) !!}
{!! Form::textGroup('contact_name', 'Contact Name', null, ['id'=>'contact_name', 'required'=>'required']) !!}
{!! Form::textGroup('mobile', 'College Mobile', null, ['id'=>'mobile', 'maxlength'=>'14', 'required'=>'required']) !!}
{!! Form::textGroup('email', 'Contact Email *', null, ['id'=>'email', 'maxlength'=>'50', 'required'=>'required']) !!}
{{ Form::selectGroup('country_id', 'Country', $countries, null, ['id'=>'country_1', 'data-live-search'=>'true', 'onchange'=>'getStates(1)'])}}
{{ Form::selectGroup('state_id', 'State', $states, null, ['id'=>'state_1', 'data-live-search'=>'true', 'onchange'=>'getCities(1)'])}}
{{ Form::selectGroup('city_id', 'City', $cities, null, [ 'data-live-search'=>'true','id'=>'city_1'])}}
{!! Form::textareaGroup('address', 'Address', null, ['id'=>'address']) !!}
{!! Form::saveButton('Save') !!}
@stop