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

@lang('global.project-billing-types.title')

{!! Form::model($project_billing_type, ['method' => 'PUT', 'route' => ['admin.project_billing_types.update', $project_billing_type->id],'class'=>'formvalidation']) !!}
@lang('global.app_edit')
{!! Form::label('title', trans('global.project-billing-types.fields.title').'*', ['class' => 'control-label form-label']) !!}
{!! Form::text('title', old('title'), ['class' => 'form-control', 'placeholder' => 'Title','required'=>'']) !!}

@if($errors->has('title'))

{{ $errors->first('title') }}

@endif
{!! Form::label('description', trans('global.project-billing-types.fields.description').'', ['class' => 'control-label']) !!} {!! Form::textarea('description', old('description'), ['class' => 'form-control ', 'placeholder' => 'Description','rows'=>'3']) !!}

@if($errors->has('description'))

{{ $errors->first('description') }}

@endif
{!! Form::submit(trans('global.app_update'), ['class' => 'btn btn-danger wave-effect']) !!} {!! Form::close() !!} @stop