{!! Form::open(['url' => '/admin/branch-addresses']) !!}
{!! Form::label('Branch') !!}
{!! Form::select('branch_id', $branches, null, ['class' => 'form-control', 'placeholder' => 'Select branch', 'id' => 'branch_id']) !!}
@if ($errors->has('branch_id'))
{!! $errors->first('branch_id') !!}@endif
{!! Form::label('Name') !!}
{!! Form::text('name', null, ['class' => 'form-control', 'placeholder' => 'Name','id' => 'name']) !!}
@if ($errors->has('name'))
{!! $errors->first('name') !!}
@endif
{!! Form::label('Address') !!}
{!! Form::textarea('address', null, ['class' => 'form-control', 'placeholder' => 'Address']) !!}
@if ($errors->has('address'))
{!! $errors->first('address') !!}@endif
{!! Form::label('Delivery Cost') !!}
{!! Form::number('delivery_cost', null, ['class' => 'form-control', 'placeholder' => 'Delivery cost', 'step' => 'any']) !!}
@if ($errors->has('delivery_cost'))
{!! $errors->first('delivery_cost') !!}
@endif
{!! Form::label('Status') !!}
{!! Form::select('is_exist', [1 => 'Active', 0 => 'Inactive'], null, ['class' => 'form-control', 'id' => 'is_exist']) !!}