You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

19 lines
634 B

@extends('layouts.app')
@section('content')
<h3 class="page-header">@lang('agency.edit')</h3>
<div class="row">
<div class="col-md-6">
<?php $agency = auth()->user()->agency;?>
{{ Form::model($agency, ['route' => 'users.agency.update', 'method' => 'patch']) }}
{!! FormField::text('name') !!}
{!! FormField::email('email') !!}
{!! FormField::text('website') !!}
{!! FormField::textarea('address') !!}
{!! FormField::text('phone') !!}
{{ Form::submit(trans('agency.update'), ['class' => 'btn btn-info']) }}
{{ Form::close() }}
</div>
</div>
@endsection