@include('messages::page_navigation', ['active' => 'create']) {!! Form::errors($errors) !!} {!! Form::open(['url' => 'messages']) !!} @section('messages-form-fields') {!! Form::smartText('receiver_name', trans('messages::receiver'), isset($username) ? $username : null) !!} {!! Form::smartText('title', trans('app.title'), isset($title) ? $title : null) !!} {!! Form::smartTextarea('text', trans('app.text'), false, isset($text) ? $text : null) !!} @show {!! Form::actions(['submit' => trans('app.send')]) !!} {!! Form::close() !!}