@extends('layouts.app') @section('title', __('vendor.create')) @section('content')
{{ __('vendor.create') }}
{{ Form::open(['route' => 'vendors.store']) }}
{!! FormField::text('name', ['required' => true, 'label' => __('vendor.name')]) !!} {!! FormField::textarea('description', ['label' => __('vendor.description')]) !!}
{{ Form::close() }}
@endsection