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