@extends('layouts.account')
@section('breadcrumb')
Accounts
@if ($account->id)
{{ $account->identifier }}
Edit
@else
Create
@endif
@endsection
@section('content')
@if ($account->id)
Edit an account
@else
Create an account
@endif
{!! Form::model($account, [
'route' => $account->id
? ['admin.account.update', $account->id]
: ['admin.account.store'],
'method' => $account->id
? 'put'
: 'post'
]) !!}
{!! Form::submit(($account->id) ? 'Update' : 'Create', ['class' => 'btn btn-success btn-centered']) !!}
{!! Form::close() !!}
@endsection