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

Maps | {{ $option }}

{!! Form::hidden('id', $id) !!}
{{ $errors->first('m_name') }} {!! Form::text('m_name', NULL, ['class' => 'form-control']) !!}
{{ $errors->first('m_path') }} {!! Form::file('m_path') !!}
{{ $errors->first('m_type') }}
{{ $errors->first('is_active') }}
{!! Form::radio('m_type', 1, NULL, ['class' => 'form-check-input', 'id' => 'radio1', 'required']) !!}
{!! Form::radio('m_type', 2, NULL, ['class' => 'form-check-input', 'id' => 'radio2', 'required']) !!}
{!! Form::radio('is_active', 1, NULL, ['class' => 'form-check-input', 'id' => 'is_active1', 'required']) !!}
{!! Form::radio('is_active', 0, NULL, ['class' => 'form-check-input', 'id' => 'is_active2', 'required']) !!}
{!! Form::button(' Save', ['class' => 'btn btn-primary btn-block', 'type' => 'submit']) !!}
{!! Form::close() !!} @stop