@extends('layouts.master') @section('title') @lang('Title') @endsection @section('css') @endsection @section('content')
Settings
@if ($message = Session::get('success'))
{{ $message }}
@endif
@method('PUT') {{ csrf_field() }} @if ($errors->any())
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif
@if ($errors->has('name'))
{{ $errors->first('name') }}
@endif
@if ($errors->has('value'))
{{ $errors->first('value') }}
@endif
@endsection @section('script') @endsection