@extends('admin/layouts/default') {{-- Page title --}} @section('title') Edit a agent @parent @stop @section('content')

Agents

Edit agent

@if ($errors->any())
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif {!! Form::model($agent, ['method' => 'PATCH', 'action' => ['AgentsController@update', $agent->id]]) !!}
{!! Form::label('name', 'Name: ') !!} {!! Form::text('name', null, ['class' => 'form-control']) !!}
{!! Form::label('phone_number', 'Phone Number: ') !!} {!! Form::text('phone_number', null, ['class' => 'form-control']) !!}
{!! Form::label('age_group_id', 'Age Group: ') !!} {!! Form::select('age_group_id', $age_group, null, ['class' => 'form-control']) !!}
{!! Form::label('id_number', 'Id Number: ') !!} {!! Form::text('id_number', null, ['class' => 'form-control']) !!}
{!! Form::label('residence', 'Residence: ') !!} {!! Form::text('residence', null, ['class' => 'form-control']) !!}
{!! Form::label('country_id', 'Country: ') !!} {!! Form::select('country_id', $country, null, ['class' => 'form-control']) !!}
{!! Form::label('seller_id', 'Seller: ') !!} {!! Form::select('seller_id', $seller, null, ['class' => 'form-control']) !!}
{!! Form::label('promo_code', 'Promo Code: ') !!} {!! Form::text('promo_code', null, ['class' => 'form-control']) !!}
{!! Form::label('agent_code', 'Agent Code: ') !!} {!! Form::text('agent_code', null, ['class' => 'form-control']) !!}
{!! Form::label('status_code', 'Status Code: ') !!} {!! Form::select('status_code', $status, null, ['class' => 'form-control']) !!}
{!! Form::submit('Update', ['class' => 'btn btn-primary form-control']) !!}
{!! Form::close() !!}
@stop