@extends('backend.layouts.app') @section('title','Withdraw') @section('content')

{{ _trans('common.Create Withdraw') }}

{!! Form::open(['route' => ['withdraw.store',@$data['user']->id], 'enctype' => 'multipart/form-data','method' => 'post', 'languages' => true, 'id' => 'portfolio-form']) !!}
{{Form::label('amount','Amount', ['class' => 'form-label required']) }} {{Form::number('amount', 0, ['min'=>0,'max' => @$data['user']->balance, 'class' => 'form-control']) }} @error('amount') {{ $message }} @enderror
{{Form::label('due','Created Date', ['class' => 'form-label required']) }}
@error('due') {{ $message }} @enderror
{{Form::label('description','Description', ['class' => 'form-label required']) }} {{Form::textarea('description',null, ['id'=>'summernote','class' => 'form-control']) }}
{{Form::close() }}
@endsection @push('js') @endpush