@extends('layouts.app') {{-- Customize layout sections --}} @section('subtitle', 'POSITIONS') @section('content_header_title', 'POSITIONS') @section('content_header_subtitle', 'NEW') {{-- Content body: main page content --}} @section('content_body') {{html()->form('POST', route('position.store'))->open()}}

NEW POSITION

{{html()->label('Title', 'title')}} {{html()->text('title')->class('form-control'.($errors->has('title') ? ' is-invalid' : ''))->placeholder('Title')}} {{$errors->first('title')}}
{{html()->form()->close()}} @stop {{-- Push extra CSS --}} @push('css') {{-- Add here extra stylesheets --}} @endpush {{-- Push extra scripts --}} @push('js') @endpush