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

UPDATE POSITION

{{html()->label('Title', 'title')}} {{html()->text('title', $position->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