@extends('adminlte::page') @section('title', 'Create and Update Areas ' . Config::get('adminlte.title')) @section('content_header')

Areas

@stop @section('content') {{--Show message if any--}} @include('layouts.flash-message')

Add or Update

{{ html()->form('POST', route($data->form_action))->id('areaId')->attribute('autocomplete', 'off')->attribute('files', true)->open() }} {{ html()->hidden('id', $data->id)->id('id') }}
Name
{{ html()->text('name', $data->name)->class('form-control')->required() }} Area name. You can specified like Mal Bali Galeria
Address
{{ html()->text('address', $data->address)->class('form-control')->id('address')->required() }} Area address.
Draw Area
{{ html()->form()->close() }}
@stop @section('js') @stop