@extends('layouts.master') @section('heading') {{__('Create department')}} @stop @section('content') {!! Form::open([ 'route' => 'departments.store', ]) !!}
{!! Form::label('Name', __('Department name') . ':', ['class' => 'control-label thin-weight']) !!} {!! Form::text('name', null,['class' => 'form-control']) !!}
{!! Form::label( __('Description'), __('Department description') . ':', ['class' => 'control-label thin-weight']) !!} {!! Form::textarea('description', null, ['class' => 'form-control']) !!}
{!! Form::submit(__("Create Department"), ['class' => 'btn btn-md btn-brand']) !!} {!! Form::close() !!} @endsection