@extends('layouts.default') @section('content')

Applicant Add

{!! Form::open(array('role' => 'form', 'url' => 'storing-applicants', 'method' => 'Post', 'files'=> true, 'class' => 'form-horizontal')) !!}
{!! Form::select('members_id', $members, null, array('class' => 'js-source-states form-control', 'required' => 'true')) !!}
{!! Form::text('first_name', old('first_name'), array('id'=> 'first_name', 'class' => 'form-control', 'required' => 'true')) !!} {!! $errors->first('first_name') !!}
{!! Form::text('last_name', old('last_name'), array('id'=> 'last_name', 'class' => 'form-control', 'required' => 'true')) !!} {!! $errors->first('last_name') !!}
{!! Form::email('email', old('email'), array('id'=> 'email', 'class' => 'form-control ', 'required' => 'true')) !!} {!! $errors->first('email') !!}
{!! Form::text('phone', old('phone'), array('id'=> 'phone', 'class' => 'form-control ', 'required' => 'true')) !!} {!! $errors->first('phone') !!}
{!! Form::close() !!}
@stop