@extends('layouts.app') @section('title', __('master.create')) @section('content')

{{ __('master.create') }}

{{ Form::open(['route' => 'masters.store']) }}
{!! FormField::text('name', ['required' => true, 'label' => __('master.name')]) !!} {!! FormField::textarea('description', ['label' => __('master.description')]) !!}
{{ Form::close() }}
@endsection