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

NEW REGION

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