@extends('website.layouts.master') @section('title', __('tr.General Information')) @section('content') @include('website.layouts.title', ['simple'=>true])


{{ csrf_field() }}

@lang('tr.General Information')


{!! Form::select('degree', array(""=>__("tr.Select Degree")) + 'App\GraduatedStudent'::degreesLables(), $graduatedStudent->degree, array('id'=>'degree', 'class'=>'form-control', 'required'=>'required', 'style' => 'direction: ltr;' )); !!}
@include('components.select_bylaw_plan_graduates', ['bylaws'=>$bylaws, 'class' => 'form-control', 'showBylawLevels'=>false, 'bylaw'=>$graduatedStudent->bylaw, 'planId'=>$graduatedStudent->plan_id])
{!! Form::select('company_sector', array(""=>__("tr.Select Sector")) + 'App\GraduatedStudent'::companySectorsLables(), $graduatedStudent->company_sector, array('id'=>'company_sector', 'class'=>'form-control', 'required'=>'required', 'style' => 'direction: ltr;' )); !!}
{!! Form::select('employment_location', array(""=>__("tr.Select Country")) + $countries, $graduatedStudent->employment_location, array('id'=>'employment_location', 'class'=>'form-control', 'required'=>'required', 'style' => 'direction: ltr;' )); !!}




@endsection @section('pagejs') @endsection