@extends('layouts.backend') @section('content') {!! Form::model($map, ['url' => 'backdoor/maps/save', 'class' => 'form-horizontal', 'autocomplete' => 'off', 'id' => 'mapForm', 'files' => 'true']) !!}

Maps | {{ $option }}

Map Details

{!! Form::hidden('id', $id) !!}
{!! Form::text('m_name', NULL, ['class' => 'form-control input-sm align-form', 'data-validation' => 'required', 'data-validation-error-msg-container' => '#m_name']) !!}
{{ $errors->first('m_name') }}
{!! Form::file('m_path') !!}
{{ $errors->first('m_path') }}
{!! Form::button(' Save', ['class' => 'btn btn-primary btn-sm', 'type' => 'submit']) !!} Cancel
{!! Form::close() !!} @stop