@extends('layouts.layout') @section('title', 'Edit Withdraw') @section('content')

@if(Session::has('success'))
Success : {{ Session::get('success') }}
@endif @if(count($errors) > 0) @endif

Edit Method View All Method

{!! Form::model($method,['route'=>['method-update',$method->id],'method'=>'PUT']) !!}

{!! Form::close() !!}
@endsection