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

{{ __('occupations.edit_occupation') }}

@include('clinical_data::occupations.menu')
@include('flash::message')
{{ Form::model($occupation, ['method' => 'PUT', 'route' => ['occupations.update',$occupation], 'data-toggle' => 'validator']) }}
{{ Form::label('name', __('occupations.occupation_name')) }} {{ Form::text('name', $occupation->name, ['class' => 'form-control compulsory', 'required', 'placeholder'=>'e.g. Peasant']) }}
{{ Form::button(__('occupations.submit'),['type'=>'submit','class'=>'btn btn-success waves-effect waves-light m-r-10']) }} {{ Form::button(__('occupations.cancel'),['type'=>'reset','class'=>'btn btn-default waves-effect waves-light']) }} {{ Form::close() }}
@endsection @push('scripts') @endpush