@extends('layouts.app') @section('content')

Checkout form

Below is an example form built entirely with Bootstrap's form controls. Each required form group has a validation state that can be triggered by attempting to submit the form without completing it.

@if(Session::has('flash_message_error'))
{!! session('flash_message_error') !!}
@endif @if(Session::has('flash_message_success'))
{!! session('flash_message_success') !!}
@endif
{{ csrf_field() }}

Update

Agent address

@if ($errors->has('username')) {{ $errors->first('username') }} @endif

Billing address

Payment

@endsection @section('scripts') @endsection