@extends ('backend.layouts.app') @section ('title', trans('Agency') . ' | ' . trans('labels.backend.title.plan.edit')) @section('page-header')

{{ trans('Agency Management') }} {{ trans('') }}

@endsection @section('content') {{ Form::model($plan, ['route' => ['admin.superadmin.plans.update', $plan], 'class' => '', 'role' => 'form', 'method' => 'PATCH']) }}

{{ trans('labels.backend.title.plan.edit') }}

@include('backend.superadmin.plans.includes.partials.plans-header-buttons')
{{ Form::textGroup('agency_name', trans('Agency Name'), 'info', ['placeholder' => trans('Agency Name')]) }} {{ Form::textGroup('phone', trans('Phone'), 'phone', ['placeholder' => trans('Phone')]) }} {{ Form::textGroup('email', trans('Email'), 'envelope', ['placeholder' => trans('Email')]) }} {{ Form::textGroup('website', trans('Website'), 'globe', ['placeholder' => trans('Website')]) }} {{ Form::textGroup('transection_price', trans('Transection Price'), 'money', ['placeholder' => trans('Transection Price')]) }} {{ Form::selectGroup('status', trans('validation.attributes.backend.plan.status'), 'caret-down', ['1'=>'Active','0'=>'Deactivate'], $plan->status, []) }}
{{ link_to_route('admin.superadmin.plans.index', trans('buttons.general.cancel'), [], ['class' => 'btn btn-danger btn-md']) }}
{{ Form::submit(trans('buttons.general.crud.update'), ['class' => 'btn btn-success btn-md']) }}
{{ Form::close() }} @stop @section('after-scripts') {{ Html::script('js/backend/access/users/script.js') }} @stop