@extends('admin/layouts/default') {{-- Page title --}} @section('title') Create New payment_message @parent @stop {{-- Page content --}} @section('content')

Payment Messages

Create a new payment_message

@if ($errors->any())
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif {!! Form::open(['url' => 'admin/payment_messages']) !!}
{!! Form::label('payment_code', 'Payment Code: ') !!} {!! Form::text('payment_code', null, ['class' => 'form-control']) !!}
{!! Form::label('phone_number', 'Phone Number: ') !!} {!! Form::text('phone_number', null, ['class' => 'form-control']) !!}
{!! Form::label('amount', 'Amount: ') !!} {!! Form::text('amount', null, ['class' => 'form-control']) !!}
{!! Form::label('message', 'Message: ') !!} {!! Form::textarea('message', null, ['class' => 'form-control', 'rows' => 3]) !!}
@lang('button.cancel')
{!! Form::close() !!}
@stop