{{ Form::model($record, array('url' => ['student/profile/edit/personal', $userRecord->slug], 'method'=>'patch')) }}

{{getPhrase('personal_details')}}

{{ Form::label('first_name', getphrase('first_name')) }} * {{ Form::text('first_name', $value = null , $attributes = array('class'=>'form-control', 'placeholder' => 'Jack')) }}
{{ Form::label('middle_name', getphrase('middle_name')) }} {{ Form::text('middle_name', $value = null , $attributes = array('class'=>'form-control', 'placeholder' => 'Jarvis')) }}
{{ Form::label('last_name', getphrase('last_name')) }} {{ Form::text('last_name', $value = null , $attributes = array('class'=>'form-control', 'placeholder' => 'Magi')) }}
@if($birth_date=='')
{{ Form::label('date_of_birth', getphrase('date_of_birth')) }} *
{{ Form::text('date_of_birth', $value = date('Y/m/d') , $attributes = array('class'=>'form-control', 'placeholder' => '2015/7/17', 'id'=>'dp')) }}
@else
{{ Form::label('date_of_birth', getphrase('date_of_birth')) }} *
{{ Form::text('date_of_birth', $value = $birth_date , $attributes = array('class'=>'form-control', 'placeholder' => '2015/7/17', 'id'=>'dp')) }}
@endif
{{ Form::label('religion_id', getphrase('religion')) }} {{Form::select('religion_id', $religions, null, ['placeholder' => getPhrase('select'),'class'=>'form-control select1'])}}
{{ Form::label('category_id', getphrase('category')) }} {{Form::select('category_id', $categories, null, ['placeholder' => getPhrase('select'),'class'=>'form-control select1'])}}
Parent Details
{{ Form::label('fathers_name', getphrase('fathers_name')) }} {{ Form::text('fathers_name', $value = null , $attributes = array('class'=>'form-control', 'placeholder' => 'Jim')) }}
{{ Form::label('parent_income', getphrase('father_Income')) }} {{ Form::text('parent_income', $value = null , $attributes = array('class'=>'form-control', 'placeholder' => 'Father Income')) }}
{{ Form::label('mothers_name', getphrase('mothers_name')) }} {{ Form::text('mothers_name', $value = null , $attributes = array('class'=>'form-control', 'placeholder' => 'Arlo')) }}
{{ Form::label('mother_income', getphrase('mother_income')) }} {{ Form::text('mother_income', $value = null , $attributes = array('class'=>'form-control', 'placeholder' => 'Mother Income')) }}
Give the name of your brother and or sister studing in this school
{{ Form::label('sibling_name_first', getphrase('first_sibling_name')) }} {{ Form::text('sibling_name_first', $value = null , $attributes = array('class'=>'form-control', 'placeholder' => 'First Sibling Name')) }}
{{ Form::label('sibling_class_first', getphrase('first_sibling_class')) }} {{ Form::text('sibling_class_first', $value = null , $attributes = array('class'=>'form-control', 'placeholder' => 'First Sibling Class')) }}
{{ Form::label('sibling_name_second', getphrase('second_sibling_name')) }} {{ Form::text('sibling_name_second', $value = null , $attributes = array('class'=>'form-control', 'placeholder' => 'Second Sibling Name')) }}
{{ Form::label('sibling_class_second', getphrase('second_sibling_class')) }} {{ Form::text('sibling_class_second', $value = null , $attributes = array('class'=>'form-control', 'placeholder' => 'Second Sibling Class')) }}
{!! Form::close() !!}