@extends('app') @section('extra-css') @endsection @section('content-header')

Add Employee

@endsection @section('content')
@can('employee-view')

  View Employee

@endcan
@can('employee-create')
{{csrf_field()}}
{{ Form::select('designation', $designations, null, ['class' => 'form-control select2', 'id' => 'designation','required' => 'required'] ) }}
@endcan
@endsection @section('extra-js') @endsection @section('script') @endsection