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

{!! Form::model($master, ['route'=>['masters.update', $master->id], 'method' => 'patch']) !!}

{{ $master->name }} {{ trans('master.edit') }}

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