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

{!! Form::open(['route'=>'masters.store']) !!}

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

{!! FormField::text('name',['label'=> trans('app.name')]) !!} {!! FormField::textarea('description',['label'=> trans('app.description')]) !!}
{!! Form::close() !!}
@endsection