@extends('admin/include/master') @section('title') لوحة التحكم | إضافة عضو جديد @endsection @section('content')

إضافة عضو جديد

{!! Form::open(array('method' => 'POST','files' => true,'url' =>'adminpanel/users')) !!}
@if ($errors->has('username'))
{{ $errors->first('username') }}
@endif
@if ($errors->has('email'))
{{ $errors->first('email') }}
@endif
@if ($errors->has('pass'))
{{ $errors->first('pass') }}
@endif
@if ($errors->has('confirmpass'))
{{ $errors->first('confirmpass') }}
@endif
{!! Form::close() !!}
@endsection